Structures and Pointers
Access to data
The first attempt to
access the fields of the
structure John through
pJohn can be:
(*pJohn).StudentID;
An alternative way:
pJohn->StudentID;